home *** CD-ROM | disk | FTP | other *** search
- /* #include this file at the top of any program that uses the HIGHC.OBJ
- function set. */
-
- #define OK 0
- #define VGA_mem (char *)0xA0000000 // The start seg/off of VGA memory
-
- typedef struct {
-
- char lmb; /* Left mouse button is currently down */
- char rmb; /* Right mouse button is currently down */
- char lmr; /* Left mouse button has been released since
- last call */
- char rmr; /* Right mouse button has been released since
- last call */
- int mx; /* X-axis position of mouse in pixels, 0 to 320 */
- int my; /* Y-axis position of mouse in pixels, 0 to 200 */
- int px; /* Previous X-axis position of mouse in pixels */
- int py; /* Previous Y-axis position of mouse in pixels */
- } MOUSE;
-
-
- /* This is the standard PCX header. As I mentioned in article 2, most of
- this stuff is useless to us, because we're only interested in 256-colour
- files. */
-
- typedef struct {
- char PCX_id; /* ALWAYS 0Ah (10 decimal), for some reason */
- char version; /* If this is not 5, you're not interested */
- char encoding; /* Ignore */
- char bits_per_pixel; /* Either 1 or 8, or you're not interested */
- int xmin, ymin; /* The top-left co-ords of the original image */
- int xmax, ymax; /* The bottom-right co-ords of the original
- image. XMAX-XMIN=Height, YMAX-YMIN=Width.
- BUT!! You must add 1 to the result, because
- PCX will store, for example, 0-319, which
- is a total of 320 pixels. Sorry: I didn't
- design the bloody thing! */
- int hscreen; // If these values aren't 320 and 200, you aren't
- int vscreen; // interested in this file. Throw it out.
- char palette[48]; /* For 16-colour images. Ignore it */
- char filler1; /* Ignore */
- char colour_planes; /* If "bits_per_pixel"=1, this must be 8. If
- it's not, you don't want it. */
- int bytes_per_ln; /* Always 320, or you aren't interested. */
- int pal_type; /* Ignore */
- char filler2[58]; /* Ignore */
- } PCXHDR;
-
- MOUSE m;
- PCXHDR hdr; /* Define a PCX header structure called hdr */
- unsigned int width, depth; /* ... of the image */
- unsigned int bytes, bits;
- char *palette; /* Pointer to some memory to store our palette */
- char far *sbptr; /* Pointer to the screen buffer */
-
- char far *g_FPtr(char far *ptr, unsigned int l);
-